home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 1997 May
/
PC Plus Super CD Issue 127 (May 1997).iso
/
delphi2
/
delphite.exe
/
data.z
/
MAIN.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1996-08-12
|
292 b
|
23 lines
unit Main;
interface
uses Windows, Classes, Graphics, Forms, Controls, DB, DBGrids,
DBTables, Grids;
type
TForm1 = class(TForm)
Query1: TQuery;
DataSource1: TDataSource;
DBGrid1: TDBGrid;
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
end.